home *** CD-ROM | disk | FTP | other *** search
/ Programmers Heaven 2 / Programmers Heaven 2.iso / files / windows / ocx / ipack.exe / SRCDISP.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-10-16  |  1.8 KB  |  58 lines

  1. VERSION 4.00
  2. Begin VB.Form SourceDisplay 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H80000005&
  5.    Caption         =   "Message Source"
  6.    ClientHeight    =   8340
  7.    ClientLeft      =   1095
  8.    ClientTop       =   1485
  9.    ClientWidth     =   7365
  10.    BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
  11.       Name            =   "MS Sans Serif"
  12.       Size            =   8.25
  13.       Charset         =   0
  14.       Weight          =   700
  15.       Underline       =   0   'False
  16.       Italic          =   0   'False
  17.       Strikethrough   =   0   'False
  18.    EndProperty
  19.    ForeColor       =   &H80000008&
  20.    Height          =   8745
  21.    Left            =   1035
  22.    LinkTopic       =   "Form1"
  23.    ScaleHeight     =   8340
  24.    ScaleWidth      =   7365
  25.    Top             =   1140
  26.    Width           =   7485
  27.    Begin VB.TextBox Text1 
  28.       Appearance      =   0  'Flat
  29.       BackColor       =   &H00C0C0C0&
  30.       BorderStyle     =   0  'None
  31.       BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
  32.          Name            =   "Courier New"
  33.          Size            =   9.75
  34.          Charset         =   0
  35.          Weight          =   400
  36.          Underline       =   0   'False
  37.          Italic          =   0   'False
  38.          Strikethrough   =   0   'False
  39.       EndProperty
  40.       Height          =   7815
  41.       Left            =   120
  42.       MultiLine       =   -1  'True
  43.       ScrollBars      =   3  'Both
  44.       TabIndex        =   0
  45.       Text            =   "SRCDISP.frx":0000
  46.       Top             =   240
  47.       Width           =   6495
  48.    End
  49. Attribute VB_Name = "SourceDisplay"
  50. Attribute VB_Creatable = False
  51. Attribute VB_Exposed = False
  52. Private Sub Form_Resize()
  53.     text1.Top = 0
  54.     text1.Left = 0
  55.     text1.Width = Me.ScaleWidth
  56.     text1.Height = Me.ScaleHeight
  57. End Sub
  58.